home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 November / Chip_2003-11_cd1.bin / program / delphi / kompon / BalmsoftPolyglot.exe / {app} / Demos / Delphi 4 / bsPolyglotDemo.dpr < prev    next >
Text File  |  2003-08-07  |  257b  |  14 lines

  1. program bsPolyglotDemo;
  2.  
  3. uses
  4.   Forms,
  5.   bsPolyglotDemoFrm in 'bsPolyglotDemoFrm.pas' {bsPolyglotDemoForm};
  6.  
  7. {$R *.res}
  8.  
  9. begin
  10.   Application.Initialize;
  11.   Application.CreateForm(TbsPolyglotDemoForm, bsPolyglotDemoForm);
  12.   Application.Run;
  13. end.
  14.